目前直播很火,但是直播是怎么做的呢?很多地方都有相关的教程,在这里做一个我做的简单的 DEMO,从零开始。以下所说的服务器环境全部在Linux上。
-
nginx的编译安装
-
在服务器上下载以下源码,截至目前这些包都是最新的。
-
编译安装
-
下载完了之后你的目录结构应该是这样的,顺序的罗列在某个文件夹下。
- nginx
- pcre
- openssl
- zlib
- nginx-rtmp-module
-
编译
- 进入pcre的目录执行命令
./configure && make && make install
。 - 进入nginx的目录执行命令
./configure --add-module=../nginx-rtmp-module --with-http_ssl_module --with-openssl=../openssl --with-zlib=../zlib
make
make install`。
- 进入pcre的目录执行命令
-
运行
- 安装好的nginx都在
/usr/local/nginx
中。 - 修改
/usr/local/nginx/conf/nginx.conf
文件内容:
- 安装好的nginx都在
-
-
worker_processes 1;
events {
worker_connections 1024;
}
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
}
application hls {
live on;
hls on;
hls_path hls_temp;
hls_fragment 8s;
}
}
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html/Love/;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
-
推流与观看
-
推流
- 向服务端推送直播的内容,可以用比较流行的 [OBS](https://obsproject.com/),当然在网上搜一下一些ffmpeg的命令也是可以的。 - 设置广播设定为 `rtmp://ServerIP:1935/live` - 设置播放路径串流码为 `test` - 选择一个场景开始串流
-
观看
- 就用大名鼎鼎的 [vlc](http://www.videolan.org/vlc/) - 设置 打开媒体 -> 打开网络 `rtmp://ServerIP/live/test` - vlc也是有手机版的,是同样。
-
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。